ActiveReports.Chart Request technical support
DataBindXY(Object[],Double[][]) Method
See Also 


xValues
Specifies the array of X values of the DataPoint object added to the collection.
yValues
Specifies the array of Y values of the DataPoint object added to the collection.
Binds the X value and Y values of the collection's DataPoints to a specified data source.

Syntax

Visual Basic (Declaration) 
Overloads Public Sub DataBindXY( _
   ByVal xValues() As Object, _
   ByVal ParamArray yValues() As Double _
) 
Visual Basic (Usage)Copy Code
Dim instance As DataPointsCollection
Dim xValues() As Object
Dim yValues() As Double
 
instance.DataBindXY(xValues, yValues)
C# 
public void DataBindXY( 
   object[] xValues,
   params double[] yValues
)

Parameters

xValues
Specifies the array of X values of the DataPoint object added to the collection.
yValues
Specifies the array of Y values of the DataPoint object added to the collection.

See Also